home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / tap2rpm < prev    next >
Text File  |  2009-08-26  |  537b  |  18 lines

  1. #! /usr/bin/python
  2.  
  3. #  based off the tap2deb code
  4. #  tap2rpm built by Sean Reifschneider, <jafo@tummy.com>
  5.  
  6. """tap2rpm"""
  7.  
  8. ### Twisted Preamble
  9. # This makes sure that users don't have to set up their environment
  10. # specially in order to run these programs from bin/.
  11. import sys, os, string
  12. if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
  13.     sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)))
  14. ### end of preamble
  15.  
  16. from twisted.scripts import tap2rpm
  17. tap2rpm.run()
  18.